home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevpdfp.c < prev    next >
C/C++ Source or Header  |  1997-07-19  |  5KB  |  182 lines

  1. /* Copyright (C) 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevpdfp.c */
  20. /* Get/put parameters for PDF-writing driver */
  21. #include "gx.h"
  22. #include "gserrors.h"
  23. #include "gdevpdfx.h"
  24.  
  25. /*
  26.  * The pdfwrite device supports the following "real" parameters:
  27.  *    OutputFile <string>
  28.  *    (all the Distiller parameters except *ImageDict)
  29.  * Currently, the only Distiller parameter that actually has any effect
  30.  * is ASCII85EncodePages.
  31.  *
  32.  * The device also supports the following write-only pseudo-parameters that
  33.  * serve only to communicate other information from the PostScript file.
  34.  * Their "value" is an array of strings, some of which may be the result
  35.  * of converting arbitrary PostScript objects to string form.
  36.  *    pdfmark - see gdevpdfm.c
  37.  *    show - see gdevpdft.c
  38.  */
  39.  
  40. private const int CoreDistVersion = 3000;    /* Distiller 3.0 */
  41.  
  42. /* ---------------- Get parameters ---------------- */
  43.  
  44. /* Get parameters. */
  45. int
  46. gdev_pdf_get_params(gx_device *dev, gs_param_list *plist)
  47. {    gx_device_pdf *pdev = (gx_device_pdf *)dev;
  48.     int code = gdev_psdf_get_params(dev, plist);
  49.  
  50.     if ( code < 0 ||
  51.          (code = param_write_float(plist, "CompatibilityLevel",
  52.                        &pdev->CompatibilityLevel)) < 0 ||
  53.          (code = param_write_int(plist, "CoreDistVersion",
  54.                      (int *)&CoreDistVersion)) < 0 ||
  55.             /* ****** DoThumbnails is OBSOLETE ****** */
  56.          (code = param_write_bool(plist, "DoThumbnails",
  57.                       &pdev->DoThumbnails)) < 0 ||
  58.          (code = param_write_long(plist, "FirstObjectNumber",
  59.                       &pdev->FirstObjectNumber)) < 0
  60.        )
  61.       ;
  62.     return code;
  63. }
  64.  
  65. /* ---------------- Put parameters ---------------- */
  66.  
  67. /* Put parameters. */
  68. int
  69. gdev_pdf_put_params(gx_device *dev, gs_param_list *plist)
  70. {    gx_device_pdf *pdev = (gx_device_pdf *)dev;
  71.     int ecode = 0;
  72.     int code;
  73.     float cl = pdev->CompatibilityLevel;
  74.     bool dt = pdev->DoThumbnails;
  75.     long fon = pdev->FirstObjectNumber;
  76.     gs_param_name param_name;
  77.  
  78.         /* General parameters. */
  79.  
  80.     switch ( code = param_read_float(plist, (param_name = "CompatibilityLevel"), &cl) )
  81.     {
  82.     default:
  83.         ecode = code;
  84.         param_signal_error(plist, param_name, ecode);
  85.     case 0:
  86.     case 1:
  87.         break;
  88.     }
  89.  
  90.     { int cdv = CoreDistVersion;
  91.       ecode = psdf_put_int_param(plist, (param_name = "CoreDistVersion"), &cdv, ecode);
  92.       if ( cdv != CoreDistVersion )
  93.         param_signal_error(plist, param_name, ecode = gs_error_rangecheck);
  94.     }
  95.             /* ****** DoThumbnails is OBSOLETE ****** */
  96.     ecode = psdf_put_bool_param(plist, "DoThumbnails", &dt, ecode);
  97.  
  98.     switch ( code = param_read_long(plist, (param_name = "FirstObjectNumber"), &fon) )
  99.     {
  100.     case 0:
  101.         /*
  102.          * Setting this parameter is only legal if the file
  103.          * has just been opened and nothing has been written,
  104.          * or if we are setting it to the same value.
  105.          */
  106.         if ( fon == pdev->FirstObjectNumber )
  107.           break;
  108.         if ( fon <= 0 || fon > 0x7fff0000 ||
  109.              (pdev->next_id != 0 &&
  110.               pdev->next_id !=
  111.                 pdev->FirstObjectNumber + pdf_num_initial_ids)
  112.            )
  113.           ecode = gs_error_rangecheck;
  114.         else
  115.           break;
  116.     default:
  117.         ecode = code;
  118.         param_signal_error(plist, param_name, ecode);
  119.     case 1:
  120.         break;
  121.     }
  122.  
  123.     /* Handle pseudo-parameters. */
  124.  
  125.     { gs_param_string_array ppa;
  126.       switch ( code = param_read_string_array(plist,
  127.                           (param_name = "pdfmark"),
  128.                           &ppa) )
  129.       {
  130.       case 0:
  131.         pdf_open_document(pdev);
  132.         code = pdfmark_process(pdev, &ppa);
  133.         if ( code >= 0 )
  134.           break;
  135.         /* falls through for errors */
  136.       default:
  137.         ecode = code;
  138.         param_signal_error(plist, param_name, ecode);
  139.       case 1:
  140.         break;
  141.       }
  142.     }
  143.  
  144.     { gs_param_dict ppd;
  145.       switch ( code = param_begin_read_dict(plist,
  146.                         (param_name = "show"),
  147.                         &ppd, false) )
  148.       {
  149.       case 0:
  150.         pdf_open_document(pdev);
  151.         code = pdfshow_process(pdev, &ppd);
  152.         param_end_read_dict(plist, param_name, &ppd);
  153.         if ( code >= 0 )
  154.           break;
  155.         /* falls through for errors */
  156.       default:
  157.         ecode = code;
  158.         param_signal_error(plist, param_name, ecode);
  159.       case 1:
  160.         break;
  161.       }
  162.     }
  163.  
  164.     if ( ecode < 0 )
  165.       return ecode;
  166.     code = gdev_psdf_put_params(dev, plist);
  167.     if ( code < 0 )
  168.       return code;
  169.  
  170.     pdev->CompatibilityLevel = cl;
  171.     pdev->DoThumbnails = dt;
  172.     if ( fon != pdev->FirstObjectNumber )
  173.       { pdev->FirstObjectNumber = fon;
  174.         if ( pdev->tfile != 0 )
  175.           { fseek(pdev->tfile, 0L, SEEK_SET);
  176.         pdf_initialize_ids(pdev);
  177.           }
  178.       }
  179.     pdf_set_scale(pdev);
  180.     return 0;
  181. }
  182.